home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Sounds / MacInTalk Stuff / Simplespeech Docs / simplespeech.c < prev   
Encoding:
C/C++ Source or Header  |  1986-03-28  |  8.2 KB  |  351 lines  |  [TEXT/ttxt]

  1. /*
  2.  *    Simplespeech.c
  3.  *
  4.  *    Version:    1.01
  5.  *    Date:        24/3/86
  6.  *
  7.  *    A sample speech program written in Megamax C using Apple's MacinTalk
  8.  *    speech driver.  I use the SimpleTools package for menus and DA handling.
  9.  *    
  10.  *    I use the strange kludge in chat.c because I found that I could not
  11.  *    call speechon,then speechoff,then speechon again. I tried to, and got
  12.  *    a "deep-shit" error and entered macsbug. Consequently, I kludged chat.c
  13.  *    to keep my speech segment separate from the main program.
  14.  *    
  15.  *    I hope you don't mind the 'bad' code I write. My philosophy is :-
  16.  *    "If it works, use it until it doesn't - then hack at it until it does..."
  17.  *
  18.  *    Help spread sources around the world.
  19.  *
  20.  *
  21.  *    I hope you can get something out of it. It is "giftware".
  22.  *
  23.  *
  24.  *    Jason Haines             ISD: +61 2 73-4444
  25.  *    ElecEng Undergraduate    STD:  (02) 73-4444
  26.  *    73 Davidson Avenue      ARPA: munnari!ipso!runx.oz!baron@SEISMO
  27.  *    Concord NSW 2137        UUCP: seismo!munnari!basser!ipso!runx!baron
  28.  *    AUSTRALIA                ACS: baron@runx
  29.  *
  30.  */
  31.  
  32. #include "stdio.h"
  33. #include "speech.h"
  34. #include <qd.h>
  35. #include <qdvars.h>
  36. #include <misc.h>
  37. #include <event.h>
  38. #include <pack.h>
  39. #include <win.h>
  40. #include <seg.h>
  41. #include <res.h>
  42. #include <chat.h>
  43. #include <font.h>
  44. #include <dialog.h>
  45. #include <toolbox.h>
  46.  
  47. char *null[] = { 0 }; /* this is needed for use of execv */
  48.  
  49. /* SimpleTools Declarations */
  50.  
  51. #define itemdisable    0L
  52. #define itemenable    1L
  53. #define itemcheck    2L
  54. #define itemuncheck    3L
  55. extern char applestring[];
  56. extern windowptr windowpoint();
  57. extern int wprocid;
  58. extern int dogoaway;
  59. extern int windmenu;
  60.  
  61. /* End of SimpleTools Declarations */
  62.  
  63. /* MacinTalk Declarations */
  64.  
  65. speechhandle thespeech;
  66. #define DEFPITCH    110
  67. #define DEFRATE        140
  68.  
  69. /* End of MacinTalk Declarations */
  70.  
  71. /* Dialog Defs */
  72. #define SAYITEM        1
  73. #define CANCELITEM    2
  74. #define OKITEM        2
  75. #define OKITEM2        2
  76. #define OKITEM3        1
  77. #define MOREITEM    3
  78. #define SAYTEXTITEM    3
  79. #define GENTEXTITEM    2
  80. /* End of Dialog Defs */
  81.  
  82. char str[256], infilename[256];
  83. int c, err;
  84. FILE *input_file,  *fopen();
  85. int i = 0;
  86. int voicemode, voicepitch, voicerate;
  87. rect therect;
  88. dialogptr    mydialogptr, aboutdialogptr, about2dialogptr, about3dialogptr,
  89.             pitchdialogptr, ratedialogptr;
  90. int itemtype,myitemhit;
  91. handle itemhandle;
  92. rect disprect;
  93. char speechstr[256];
  94.  
  95. #define TRUE        1
  96. #define FALSE        0
  97. #define WXORIGIN1    50
  98. #define WYORIGIN1    50
  99. #define WIDTH1        400
  100. #define HEIGHT1        250
  101. #define WXORIGIN2    50
  102. #define WYORIGIN2    50
  103. #define WIDTH2        400
  104. #define HEIGHT2        250
  105.  
  106. zerostr(string)
  107. char string[];
  108. {
  109.     string[0] = '\0';
  110. }
  111.  
  112.  
  113. exit_to_other()
  114. {
  115.     transfer(null);
  116. }
  117.  
  118.  
  119. exit_to_shell()
  120. {
  121.     chat("",voicemode,voicepitch,voicerate,LAST_CALL);
  122.     exittoshell();
  123. }
  124.  
  125. nop()
  126. {
  127. }
  128.  
  129. set_pitch()
  130. {
  131.     int err, tmp;
  132.     char answer[255];
  133.     
  134.     zerostr(answer);
  135.     showwindow(pitchdialogptr);
  136.     drawdialog(pitchdialogptr);
  137.     do
  138.     {
  139.         modaldialog(NULL,&myitemhit);
  140.     } while (myitemhit != OKITEM3);
  141.     getditem(pitchdialogptr,GENTEXTITEM,&itemtype,&itemhandle,&disprect);
  142.     getitext(itemhandle,&answer);
  143.     setitext(itemhandle,"");
  144.     tmp = atoi(answer);
  145.     hidewindow(pitchdialogptr);
  146.     if ((tmp < 69) || (tmp > 450))
  147.     {
  148.         paramtext("Pitch","69…450","","");
  149.         alert(708,NULL);
  150.     }
  151.     else
  152.     {
  153.         voicepitch = tmp;
  154.         speechpitch(thespeech,voicepitch,(short)voicemode);
  155.         menu("Speech","Reset to defaults^4",itemenable);
  156.     }
  157. }
  158.  
  159. set_rate()
  160. {
  161.     int err, tmp;
  162.     char answer[255];
  163.     
  164.     zerostr(answer);
  165.     showwindow(ratedialogptr);
  166.     drawdialog(ratedialogptr);
  167.     do
  168.     {
  169.         modaldialog(NULL,&myitemhit);
  170.     } while (myitemhit != OKITEM3);
  171.     getditem(ratedialogptr,GENTEXTITEM,&itemtype,&itemhandle,&disprect);
  172.     getitext(itemhandle,&answer);
  173.     setitext(itemhandle,"");
  174.     hidewindow(ratedialogptr);
  175.     tmp = atoi(answer);
  176.     if ((tmp < 85) || (tmp > 425))
  177.     {
  178.         paramtext("Rate","85…425","","");
  179.         alert(708,NULL);
  180.     }
  181.     else
  182.     {
  183.         voicerate = tmp;
  184.         speechrate(thespeech,voicerate);
  185.         menu("Speech","Reset to defaults^4",itemenable);
  186.     }
  187. }
  188.  
  189. set_natural_mode()
  190. {
  191.     voicemode = natural;
  192.     menu("Speech","Robotic Speech",itemuncheck);
  193.     menu("Speech","Natural Speech",itemcheck);
  194.     menu("Speech","Reset to defaults^4",itemenable);
  195. }
  196.  
  197. set_robotic_mode()
  198. {
  199.     voicemode = robotic;
  200.     menu("Speech","Robotic Speech",itemcheck);
  201.     menu("Speech","Natural Speech",itemuncheck);
  202.     menu("Speech","Reset to defaults^4",itemenable);
  203. }
  204.  
  205. reset_settings()
  206. {
  207.     voicemode = natural;
  208.     menu("Speech","Robotic Speech",itemuncheck);
  209.     menu("Speech","Natural Speech",itemcheck);
  210.     voicepitch = DEFPITCH;
  211.     voicerate = DEFRATE;
  212.     menu("Speech","Reset to defaults^4",itemdisable);
  213. }
  214.  
  215. enter_speech()
  216. {
  217.     showwindow(mydialogptr);
  218.     drawdialog(mydialogptr);
  219.     chat("Go ahead, bash the keebord",voicemode,voicepitch,voicerate,NORMAL_CALL);
  220.     do
  221.     {
  222.         modaldialog(NULL,&myitemhit);
  223.         if (myitemhit == SAYITEM)
  224.         {
  225.             getditem(mydialogptr,SAYTEXTITEM,&itemtype,&itemhandle,&disprect);
  226.             getitext(itemhandle,&speechstr);
  227.             chat(speechstr,voicemode,voicepitch,voicerate,NORMAL_CALL);
  228.         }
  229.     } while (myitemhit != CANCELITEM);
  230.     hidewindow(mydialogptr);
  231. }
  232.  
  233.  
  234. tell_about_me()
  235. {
  236.     int itemhit;
  237.     
  238.     showwindow(aboutdialogptr);
  239.     drawdialog(aboutdialogptr);
  240.     chat("Hello, I am Simple Speech, a sample speech program written in Cee using Apples Mackin Talk speech driver",voicemode,voicepitch,voicerate,NORMAL_CALL);
  241.     chat("written by Jayson Haines, copy rite 9teen atee6.",voicemode,voicepitch,voicerate,NORMAL_CALL);
  242.     chat("For more info, just hit the button.",voicemode,voicepitch,voicerate,NORMAL_CALL);
  243.     do
  244.     {
  245.         modaldialog(NULL,&itemhit);
  246.     } while ((itemhit != OKITEM) && (itemhit != MOREITEM));
  247.     hidewindow(aboutdialogptr);
  248.     if (itemhit == MOREITEM)
  249.     {
  250.         showwindow(about2dialogptr);
  251.         drawdialog(about2dialogptr);
  252.         chat("I am a giftware program, so you do not need to pay enee money to enn joy mee.",voicemode,voicepitch,voicerate,NORMAL_CALL);
  253.         chat("If u like mee, keep mee. But, do not sell me..",voicemode,voicepitch,voicerate,NORMAL_CALL);
  254.         do
  255.         {
  256.             modaldialog(NULL,&itemhit);
  257.         } while (itemhit != OKITEM2);
  258.         hidewindow(about2dialogptr);
  259.     }
  260.     showwindow(about3dialogptr);
  261.     drawdialog(about3dialogptr);
  262.     do
  263.     {
  264.         modaldialog(NULL,&itemhit);
  265.     } while (itemhit != OKITEM3);
  266.     hidewindow(about3dialogptr);
  267. }
  268.  
  269.  
  270. speak_file()
  271. {
  272.     char messagestr[256];
  273.     
  274.     if (!(err = getfile("TEXT",infilename)))
  275.         return(0);
  276.     if ((input_file = fopen (infilename, "r")) == NULL)
  277.     {
  278.         alert(1998,NULL);
  279.         return(0);
  280.     }
  281.     /* SYNTAX: chat(string,mode,pitch,rateint,chatstat) */
  282.     while ( (c = getc(input_file)) != EOF )
  283.     {
  284.         if (c=='\n')
  285.         {
  286.             str[i] = '\0';
  287.             if (i>0)
  288.                 chat(str,voicemode,voicepitch,voicerate,NORMAL_CALL);
  289.             i = 0;
  290.         }
  291.         else
  292.             str[i++] = c;
  293.     }
  294. }
  295.  
  296. menusetup()
  297. {
  298.     menu (applestring,"About SimpleSpeech^1…",tell_about_me);
  299.     menu (applestring,"About SimpleSpeech^1…",itemenable);
  300.     menu("File","Open Speech File/O^2",speak_file);
  301.     menu("File","Open Speech File/O^2",itemenable);
  302.     menu("File","Transfer…^7",exit_to_other);
  303.     menu("File","(-",nop);
  304.     menu("File","Quit/Q",exit_to_shell);
  305.     menu("Edit","Undo",nop);
  306.     menu("Edit","Undo",itemdisable);
  307.     menu("Edit","Copy/C",nop);
  308.     menu("Edit","Copy/C",itemdisable);
  309.     menu("Edit","Cut/X",nop);
  310.     menu("Edit","Cut/X",itemdisable);
  311.     menu("Edit","Paste/V",nop);
  312.     menu("Edit","Paste/V",itemdisable);
  313.     menu("Edit","Clear",nop);
  314.     menu("Edit","Clear",itemdisable);
  315.     menu("Speech","Enter some words of wisdom^3",enter_speech);
  316.     menu("Speech","Enter some words of wisdom^3",itemenable);
  317.     menu("Speech","Set Pitch",set_pitch);
  318.     menu("Speech","Set Pitch",itemenable);
  319.     menu("Speech","Set Rate",set_rate);
  320.     menu("Speech","Set Rate",itemenable);
  321.     menu("Speech","Reset to defaults^4",reset_settings);
  322.     menu("Speech","Reset to defaults^4",itemdisable);
  323.     menu("Speech","Robotic Speech",set_robotic_mode);
  324.     menu("Speech","Robotic Speech",itemuncheck);
  325.     menu("Speech","Natural Speech",set_natural_mode);
  326.     menu("Speech","Natural Speech",itemcheck);
  327. }
  328.  
  329. windowsetup()
  330. {
  331. }
  332.  
  333.  
  334. main()
  335. {
  336.     simpletools("About SimpleSpeech^1…");
  337.     menusetup();
  338.     windowsetup();
  339.     voicepitch = DEFPITCH;
  340.     voicerate = DEFRATE;
  341.     voicemode = natural;
  342.     chat("",voicemode,voicepitch,voicerate,FIRST_CALL);
  343.     mydialogptr = getnewdialog(21200,NULL,(windowptr) -1);
  344.     aboutdialogptr = getnewdialog(21201,NULL,(windowptr) -1);
  345.     about2dialogptr = getnewdialog(21202,NULL,(windowptr) -1);
  346.     about3dialogptr = getnewdialog(18165,NULL,(windowptr) -1);
  347.     ratedialogptr = getnewdialog(2300,NULL,(windowptr) -1);
  348.     pitchdialogptr = getnewdialog(23620,NULL,(windowptr) -1);
  349.     for (;;) simpleevents();
  350. }
  351.